CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 创建目录

搜索资源列表

  1. threecodes

    5下载:
  2. 1、 用C语言写一个程序名字为procs4,该程序运行过程中共有4个进程,procs4程序(父进程)创建2个子进程p1和p2,p1子进程再创建一个子进程p3。4个进程完成如下工作: 父进程并打印字符串“I am main process”;p1子进程打印“I am child process p1”字符串;p2子进程打印“I am child process p2”;子进程p3打印字符串“I am child process p3”,然后使用exec(族)系统调用打印当前目录下文件和子目录下
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-01
    • 文件大小:1702
    • 提供者:杨子坤
  1. C_File_System_Simulation

    0下载:
  2. 文件系统的模拟本系统可以实现改变目录(cd),创建文件(create),删除文件(delete),显示目录(dir),创建目录(mkdir)以及退出系统(exit)。-The file system simulation of this system can bring about change directory (cd), create a file (create), delete the file (delete), which displays a directory (dir), c
  3. 所属分类:File Formats

    • 发布日期:2017-04-03
    • 文件大小:94629
    • 提供者:杨新宇
  1. as

    0下载:
  2. 文件管理系统,可以完成建立一级目录,在此里面可以完成创建文件,删除文件,修改文件,读文件,写文件,等功能-Document management system that can complete the establishment of a directory, which can be completed in this create a file, delete files, modify files, read files, write documents, and other funct
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-04-07
    • 文件大小:2673
    • 提供者:陈莹华
  1. FileOperate

    0下载:
  2. 文件读写,文件删除,重命名.在列表框或组合框中显示文件和目录列表.创建临时文件.创建目录-Reading and writing files, file delete, rename. In the list box or combo box displays a list of files and directories. Create temporary files. Create Directory
  3. 所属分类:File Operate

    • 发布日期:2017-04-07
    • 文件大小:276960
    • 提供者:Jennifer
  1. directoryviewer.tar

    0下载:
  2. linux环境下用qt图形界面编程创建目录对话框,如打开文件时的搜索范围等。-linux environment, graphical interface programming with qt to create the directory dialog box, such as open files when the search range.
  3. 所属分类:GUI Develop

    • 发布日期:2017-03-31
    • 文件大小:1264
    • 提供者:于洋
  1. U_Disk_RW

    0下载:
  2. C51通过SL811读写U盘完整例程。包含创建目录、创建文件等。-Example for reading and writing U-Disk through SL811 USB host controller.
  3. 所属分类:SCM

    • 发布日期:2017-04-05
    • 文件大小:260324
    • 提供者:宗战华
  1. hkj

    0下载:
  2. 多用户多级目录的文件系统,(1)具有login (用户登录) (2)系统初始化(建文件卷、提供登录模块) (3)文件的创建: create (4)文件的打开:open (5)文件的读:read (6)文件的写:write (7)文件关闭:close (8)删除文件:delete (9)创建目录(建立子目录):mkdir (10)改变当前目录:cd (11)列出文件目录:dir (12)退出:logout -Multi-user multi-level directory of the file
  3. 所属分类:OS Develop

    • 发布日期:2017-03-31
    • 文件大小:4519
    • 提供者:许俊
  1. PHP_function_call_to_reate_the_source_directory.ra

    0下载:
  2. PHP调用创建目录函数的源码PHP function call to create the source directory-PHP function call to create a directory source PHP function call to create the source directory
  3. 所属分类:WEB(ASP,PHP,...)

    • 发布日期:2017-04-03
    • 文件大小:11149
    • 提供者:ccx
  1. VC_programming_code_create_directory_Classics

    0下载:
  2. VC编程实现如何创建目录经典代码VC programming code to create a directory Classics-VC programming code to create a directory Classics
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-16
    • 文件大小:12019
    • 提供者:liming
  1. C_programming_create_irectory_listing

    0下载:
  2. C编程实现创建目录列表C programming to create a directory listing-C programming to create a directory listing
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-25
    • 文件大小:8134
    • 提供者:,
  1. FTP

    0下载:
  2. C# FTP创建目录 C# FTP各种操作 -FTP
  3. 所属分类:Ftp Client

    • 发布日期:2017-04-15
    • 文件大小:7330
    • 提供者:huangbin
  1. filesystem

    0下载:
  2. 在Ubuntu下实现一个简单的文件系统,可以实现创建目录浏览目录,建文件等功能-Under the Ubuntu implement a simple file system
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-03
    • 文件大小:42320
    • 提供者:ann
  1. wenjianguanli

    2下载:
  2. 一、 任务 设计模拟操作系统文件系统的程序。 二、 目的 通过具体的文件存储空间的管理、文件的物理结构、目录结构和文件操作的实现,加深对文件系统内部功能和实现过程的理解。 三、功能要求 (1)在内存中开辟一个空间作为文件存储器,在其上实现一个简单的文件系统。退出这个文件系统时,需要该文件系统的内容保存到磁盘上,以便下次可以将其回复到内存中来。 (2)文件存储空间管理可采取显式链接(如FAT)或者其他方法。(即自选一种方法) (3)空闲空间管理可采用位图或者
  3. 所属分类:Java Develop

    • 发布日期:2017-03-29
    • 文件大小:79937
    • 提供者:卢思琦
  1. m

    0下载:
  2. 生成黑名单文件,中间写的比较乱,但涉及STL文件写,获取时间,创建目录等-Generated blacklist file, the middle of writing the more chaotic, but the STL file involves writing, access time, create directories, etc.
  3. 所属分类:STL

    • 发布日期:2017-03-31
    • 文件大小:921
    • 提供者:inreyou
  1. create_dir_list

    0下载:
  2. vc创建目录列表的程序源码,希望对大家有所帮助-vc create a directory listing of the program source code, we want to help
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-15
    • 文件大小:7666
    • 提供者:朱丽萍
  1. Demo

    0下载:
  2. vc如何创建目录的程序源码,感兴趣的可以看下-vc how to create a directory of program source code, interest may have a look
  3. 所属分类:File Operate

    • 发布日期:2017-04-15
    • 文件大小:11168
    • 提供者:朱秀萍
  1. Filesys

    0下载:
  2. 模拟文件管理系统 cd 改变目录 create 创建文件 del删除文件 dir 显示目录 md 创建目录 rd 删除目录-Analog document management system to create a file create cd change directory to delete files dir displays the directory del md rd remove directory create a directory
  3. 所属分类:Windows Kernel

    • 发布日期:2017-03-28
    • 文件大小:853262
    • 提供者:张星
  1. CSharpFTP

    0下载:
  2. C# FTP创建目录 如果最终目的是为了创建目录 我的做法是,不管目录文件夹是否存在 ,循环创建, 如果存在就会出异常,捕获,但不抛, 不存在的话就会创建. 有源代码-C# FTP to create the directory if the ultimate goal is to create a catalog of my practice, regardless of the directory folder exists, create a loop, there wil
  3. 所属分类:Ftp Client

    • 发布日期:2017-03-28
    • 文件大小:7324
    • 提供者:lltz
  1. File

    0下载:
  2. 操作系统课程设计,文件管理系统的c++源码,有文件增加,删除,创建目录,修改文件,保存当前状态等功能。-Operating systems curriculum design, document management system c++ source code, there are files to add, delete, create directories, modify files, save the current state functions.
  3. 所属分类:OS Develop

    • 发布日期:2017-03-31
    • 文件大小:4722
    • 提供者:eewcee
  1. FTPUtil

    0下载:
  2. FTP工具类 连接ftp服务器 上传文件 判断Ftp目录是否存在,如果不存在则创建目录 获取当前目录 返回FTP目录下的文件列表 取得指定目录下的所有文件名,不包括目录名称 删除文件 断开与ftp服务器的链接-FTP Tools Ftp server connection Upload files Ftp directory to determine whether there is, if you create the directory does
  3. 所属分类:Java Develop

    • 发布日期:2017-03-25
    • 文件大小:3372
    • 提供者:曲欣亮
« 1 2 34 5 6 7 8 9 10 ... 44 »
搜珍网 www.dssz.com