跳至主要內容
Python File

本文主要研究 Python 文件操作。

打开大文件的工具

很多时候,自带的工具打开大文件是很慢的,我们可以使用 EmEditor 工具,免费版还是很好用的。

File API

exists

可以使用如下的逻辑来判断我们的函数是否存在:

if not os.path.exists(s.file_split):
    logging.error("The file {} is not exists! please check your path!".format(s.file_split))
    logging.debug("sys.path is {}".format(sys.path))
    exit(1) # if in __main__

Someone大约 5 分钟Pythonpythonfile