Python常用常见知识汇总
1、获取一个文件的子串
如: str1=”myfirst.tif”,想获取不带扩展名的文件名最简单方式为str2=str1[0:-4]
2、获取指定文件夹下的所有指定类型文件
arcpy.env.workspace=inputDir
fileList=arcpy.ListFiles(“*.tif”)即可获取所有tif文件的链表
3、获取指定文件路径下的所有文件名称
dirList=os.listdir(inputDir)即可获取文件链表
4、多个文件路径的拼接
outputFilePath=os.path.join(outputBaseDir,outputSubDir,outputFileName)
5、提取数据集中的指定数据
arcpy.ExtractSubDataset_management(inputfile,outputfile,”0:2:4″)#指定索引值为0,2,4的索引提出来
6、路径设置一般是用/而不是\,因为转义字符存在
7、 判断文件不存在方法
if not os.path.exists(filepath):
print filename
8、不足指定位数补充0
str1=”abc”
str1=str1.zfill(5)
结果为str1=”00abc”
str.zfill(40);
转载自:https://blog.csdn.net/liyanzhong/article/details/46525319