[Home]
[Edit this page]
[Recent Changes]
[Special Pages]
[Help]
CppBuilderCopyFile
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
CppBuilderCopyFile
(C++ Builder) How do I copy a file?
Use the function CopyFile.//Will FileTo.txt be overwritten if it already exists? No. const bool failIfExists = true; CopyFile( "FileFrom.txt","FileTo.txt", failIfExists);
Other code snippets
(C++) How do I copy a file?
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
