发布时间:2016-10-31 10:47:41
find ./ -type l -exec rm -f {} \;Find can execute arguments with the -exec option for each match it finds. It is a recommended mechanism because you can handle paths with spaces/newlines and other characters in them correctly. You will have to delete the contents of the directory before you can re.........【阅读全文】
发布时间:2016-08-10 14:52:43
一、进程 创建进程: CreateProcess("C:\\windows\\notepad.exe",0,0,0,0,0,0,0,&si,&pi); WinExec("notepad",SW_SHOW); ShellExecute(0,"open","notepad","c:\\a.txt","",SW_SHOW); ShellExecuteEx(&sei); 遍历进程: Crea.........【阅读全文】