02 2016 档案
摘要:1 #!/usr/bin/python 2 3 import os 4 5 source='F:\\lh.jpg' 6 target='E:\\' 7 copy_command="xcopy %s %s"%(source,target) 8 print copy_command 9 if os.sy
阅读全文
摘要:C: 借鉴C 文件操作库函数总结 eg: #include <fstream> #include <iostream> #include <cstdio> using namespace std; int main(){ freopen("D:\\input.in","r",stdin); freo
阅读全文