how, can i
1-check if a certain path exists (is correct)
2-check the size of a file
3-get the free disk space of a specific drive
4-create a new dir
thanks for the help
christoph
You need to apply some File I/O Functions. You can find on the MSDN a page
titled "File I/O Functions" which lists all functions available. In the
contents you can find it under
Platform SDK
Base Services
Files and I/O
File I/O
File I/O Reference
File I/O Functions
Specifically:
1. FindFirstFile / FindFirstFileEx
2. GetFileSize / GetFileSizeEx
3. GetDiskFreeSpace / GetDiskFreeSpaceEx
4. CreateDirectory / CreateDirectoryEx
I hope this helps.
Kind regards,
Radu Ogrezeanu-Ghica
Microsoft Germany
Christoph Lehmann <christop...@unifr.ch> wrote in message
news:eFufq#XQ$GA....@cppssbbsa02.microsoft.com...