怎么在指定的路径下新建一个文件夹?
在指定的路径下新建一个文件夹,用哪个函数?怎么写? Creates a new directory based on the specified directory name.file:///c:/program%20files/national%20instruments/cvi85/bin/libref/note.gifNote You can create only one directory at a time.Example/* Make a new directory named \DATA\WAVEFORM on drive C */
/* assuming that C:\DATA does not exist */
MakeDir ("C:\\DATA");
MakeDir ("C:\\DATA\\WAVEFORM");
file:///c:/program%20files/national%20instruments/cvi85/bin/libref/dot.gif Prototype file:///c:/program%20files/national%20instruments/cvi85/bin/libref/dot.gif
int MakeDir (char Directory_Name[]);
页:
[1]