Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How do I create a directory? How do I remove a directory (and its contents)?
How do I create a directory? How do I remove a directory (and its contents)?
✍: Guest
If your operating system supports these services, they are likely to be provided in C via functions named mkdir and rmdir. Removing a directory's contents as well will require listing them and calling remove . If you don't have these C functions available, try system along with your operating system's delete command(s).
2015-04-01, 1096👍, 0💬
Popular Posts:
Can you explain steps in function points? Below are the steps in function points: >First Count ILF, ...
How To Select an Oracle System ID (SID)? - Oracle DBA FAQ - Creating New Database Instance Manually ...
Does there exist any other function which can be used to convert an integer or a float to a string? ...
What is more advisable to create a thread, by implementing a Runnable interface or by extending Thre...
What are the standard ways of parsing XML document? XML parser sits in between the XML document and ...