os.path.abspath确保路径是绝对的。使用以下帮助器功能:
import osdef absoluteFilePaths(directory): for dirpath,_,filenames in os.walk(directory): for f in filenames:yield os.path.abspath(os.path.join(dirpath, f))
欢迎分享,转载请注明来源:内存溢出
os.path.abspath确保路径是绝对的。使用以下帮助器功能:
import osdef absoluteFilePaths(directory): for dirpath,_,filenames in os.walk(directory): for f in filenames:yield os.path.abspath(os.path.join(dirpath, f))
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)