如果没有自己去设置安装路径,MYSQL默认安装在C:/Program Files/MySQL/MySQL Server 5.1,新建的数据库文件在C:/Documents and Settings/All Users/Application Data/MySQL/MySQL Server 5.1/data这里. C:/Documents and Settings/All Users/Application Data/MySQL/MySQL Server 5.1/data/userinfo C:/…
import os,shutil def newDir(dir_path): if not os.path.exists(dir_path): os.makedirs(dir_path) def copydir(where_path,go_path,start_time,end_time): newDir(go_path) for brand in os.listdir(where_path): brand_path = os.path.join(where_path, brand) #prin…
转载:https://blog.csdn.net/u014552678/article/details/62046638 总结:修改Anaconda中的Jupyter Notebook默认工作路径的三种方式 方式1. 打开Windows的cmd,在cmd中输入jupyter notebook --generate-config如下图: 打开此文件找到 ## The directory to use for notebooks and kernels. #c.NotebookApp.noteboo…