Gonzalez Posted February 9, 2008 Report Posted February 9, 2008 Cativa stiti de folderul "con" iata cum il poti creea si sterge.//make a con folderint makecon(String path){path.Insert("mkdir \\\\.\\",0);path += "con";return system(path.c_str());}//delete a con folderbool delcon(String path){path.Insert("rmdir \\\\.\\",0);path += "con";return system(path.c_str());} Quote
xss Posted February 11, 2008 Report Posted February 11, 2008 Cativa stiti de folderul "con" iata cum il poti creea si sterge.//make a con folderint makecon(String path){path.Insert("mkdir \\\\.\\",0);path += "con";return system(path.c_str());}//delete a con folderbool delcon(String path){path.Insert("rmdir \\\\.\\",0);path += "con";return system(path.c_str());}sau mai usor: make: cmd->md\\.\\c:\\CONdelete: cmd->rd\\.\\c\\CON Quote