#文件创建
with open("filename.txt","w") as f:
f.write("123456")
#删除文件
import os
os.remove("filename.txt")
#创建文件夹
os.mkdir("dirname")
#删除文件夹
os.rmdir("dirname")
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Syste