answersLogoWhite

0

In Visual C++, or C# you can use static method Directory or non-static DirectoryInfo.

User Avatar

Wiki User

17y ago

What else can I help you with?

Related Questions

What is the difference between fopen and open?

fopen is std.library function but open is a system call.fopen is finally converted into open system call.System call to perform its function but std.library are on user space implementation.Return type of fopen is FILE* , but open return type is an integer.


How do you use fopen to read PHP files?

To read PHP files using fopen in PHP, you would first need to open the file using fopen with "r" mode. This opens the file for reading. Remember to check if the file opened successfully, and then you can use functions like fread to read the content of the file. Finally, close the file with fclose when done.


How can you block the PHP file fopen with chmod and are there similar functions used to open or modify files with PHP ASP or any other languages?

bash/sh: chmod -rw test.file php: fopen('test.file', 'r') - return false (and E_WARNING)


List four things you can do with nautilus?

View files Create files Open files Copy/move files Delete files View/Create/Open/Copy/Move/Delete folders


Opening and closing a file in cplusplus?

You can use any usual C-functions like fopen/fclose or open/create/close.


How do you open a file in c plus plus?

fopen()


How do you create a file in c plus plus?

Is it a file or a folder you want to create? Use open/creat/fopen for the former, mkdir for the latter.Example:FILE *f;int rc;rc= mkdir ("C:\\AA");if (rc) perror ("Error in mkdir");f= fopen ("C:\\AA\\MYNEWFILE.TXT", "w");if (f==NULL) perror ("Error in fopen");


When i open any document thn There is a virus which automatically create multiple files?

When i open any document thn There is a virus which automatically create multiple files?"


You can create new folders to store files from the dialog box?

open


Which mode is used to open a binary file in write and read mode?

open: O_BINARY|O_RDWR fopen: "rb+"


How do you createe a file using c language?

Use function open or creat or fopen.


Write a PHP program to read and write a text file?

Oh this is easy =PLets say or file is "file.txt"