python - How to find files and skip directories in os.listdir

文章推薦指數: 80 %
投票人數:10人

You need to filter out directories; os.listdir() lists all names in a given path. You can use os.path.isdir() for this: basepath = '/path/to/directory' for ... WelcometoOStackKnowledgeSharingCommunityforprogrammeranddeveloper-Open,LearningandShare Login Remember Register Ask Q&A AllActivity Hot! Unanswered Tags Categories Users AskaQuestion AskaQuestion Categories Allcategories Topic[话题](3) Life[生活](4) Technique[技术](86.6k) Idea[创意](2) Jobs[工作](0) Others[杂七杂八](11) python-Howtofindfilesandskipdirectoriesinos.listdir 0votes 72views asked Oct17,2021 by 深蓝 (31.9mpoints) python-Howtofindfilesandskipdirectoriesinos.listdir Iuseos.listdiranditworksfine,butIgetsub-directoriesinthelistalso,whichisnotwhatIwant:Ineedonlyfiles. WhatfunctiondoIneedtouseforthat? Ilookedalsoatos.walkanditseemstobewhatIwant,butI'mnotsureofhowitworks. Question&Answers:os与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视… python Pleaseloginorregistertoaddacomment. Pleaseloginorregistertoanswerthisquestion. 1Answer 0votes answered Oct17,2021 by 深蓝 (31.9mpoints) Youneedtofilteroutdirectories;os.listdir()listsallnamesinagivenpath.Youcanuseos.path.isdir()forthis: basepath='/path/to/directory' forfnameinos.listdir(basepath): path=os.path.join(basepath,fname) ifos.path.isdir(path): #skipdirectories continue Notethatthisonlyfiltersoutdirectoriesafterfollowingsymlinks.fnameisnotnecessarilyaregularfile,itcouldalsobeasymlinktoafile.Ifyouneedtofilteroutsymlinksaswell,you'dneedtousenotos.path.islink()first. OnamodernPythonversion(3.5ornewer),anevenbetteroptionistousetheos.scandir()function;thisproducesDirEntry()instances.Inthecommoncase,thisisfasterasthedirentryloadedalreadyhascachedenoughinformationtodetermineifanentryisadirectoryornot: basepath='/path/to/directory' forentryinos.scandir(basepath): ifentry.isdir(): #skipdirectories continue #useentry.pathtogetthefullpathofthisentry,oruse #entry.nameforthebasefilename Youcanuseentry.is_file(follow_symlinks=False)ifonlyregularfiles(andnotsymlinks)areneeded. os.walk()doesthesameworkunderthehood;unlessyouneedtorecursedownsubdirectories,youdon'tneedtouseos.walk()here. 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视… Pleaseloginorregistertoaddacomment. Relatedquestions 0votes 70views 1answer python-Whatdoes-1meaninthiscode([fileforfileinos.listdir(folder_dir)iffile.find("xlsx")!=-1])?     Howcanyouinterpretthecode?[fileforfileinos.listdir(folder_dir)iffile.find("xlsx")!=-1]Also,what...1-mean-in-this-codefile-for-file-in-os-listdirfolder-dir-if-file... asked Oct7,2021 by 深蓝 (31.9mpoints) python 0votes 137views 1answer python-Whatdoes-1meaninthiscode([fileforfileinos.listdir(folder_dir)iffile.find("xlsx")!=-1])?     Howcanyouinterpretthecode?[fileforfileinos.listdir(folder_dir)iffile.find("xlsx")!=-1]Also,whatdoes-1meaninthiscode?... asked Jan27,2021 inTechnique[技术] by 深蓝 (31.9mpoints) python 0votes 430views 1answer python-Whyispandasread_csvabletofindfilebutos.listdirisn't?     Ihaveafileat~/GoogleDrive/iNat/full.csv.iNatPATH=r"~/GoogleDrive/iNat/"FILENAME=iNatPATH+"full.csv"I...path):>>>os.getcwd()...'/Users//Documents'... asked Jan24,2021 inTechnique[技术] by 深蓝 (31.9mpoints) python 0votes 254views 1answer python-Howtoignorehiddenfilesusingos.listdir()?     Mypythonscriptexecutesanos.listdir(path)wherethepathisaqueuecontainingarchivesthatIneedtotreatone...andifnotwhatwouldbethebestway?Question&Answers:os... asked Oct17,2021 by 深蓝 (31.9mpoints) python 0votes 100views 1answer Python'sos.listdirbehaviouronWindows     >>>importos>>>os.chdir('c:/python27')>>>os.listdir('c:')['Tools','include','python.exe','libs'...')toreturnthecontentsof"c:/"?SeeQuestion&Answersmoredetail:os... asked Oct24,2021 by 深蓝 (31.9mpoints) Python's 0votes 81views 1answer python-Non-alphanumericlistorderfromos.listdir()     Ioftenusepythontoprocessdirectoriesofdata.Recently,Ihavenoticedthatthedefaultorderofthe...determiningthe(displayed)orderoftheselists?Question&Answers:os... asked Oct17,2021 by 深蓝 (31.9mpoints) python 0votes 68views 1answer errorhandling-PythongivingFileNotFoundErrorforfilenamereturnedbyos.listdir     Iwastryingtoiterateoverthefilesinadirectorylikethis:importospath=r'E:/somedir'forfilenamein...directory:'foo.txt'Sowhatiswronghere?Question&Answers:os... asked Oct17,2021 by 深蓝 (31.9mpoints) error 0votes 95views 1answer python-os.listdirvsgrepinaPrefectschedule     I'mschedulingtaskswithPrefectthisway:#Pythonscriptfromprefectimporttask,Flowfromprefect.tasks.shell.../questions/65899426/os-listdir-vs-grep-in-a-prefect-schedule... asked Oct7,2021 by 深蓝 (31.9mpoints) python 0votes 86views 1answer list-howdoesFORworkwithos.listdirinpython?     (Thisquestionalreadyhasanswershere):questionfrom:https://stackoverflow.com/questions/66046604/how-does-for-work-with-os-listdir-in-python... asked Oct6,2021 by 深蓝 (31.9mpoints) list 0votes 133views 1answer python-Issuewithos.listdirwhenascriptisexecutablewithpyinstaller     Ihavecreatedascriptthattakesafilefromonefolderandproducesanotherfileinanotherfolder.Thisisa...withmyexecutableIgetthis'/Users/manoldominguez/input/'... asked Feb6,2021 inTechnique[技术] by 深蓝 (31.9mpoints) python WelcometoOStackKnowledgeSharingCommunityforprogrammeranddeveloper-Open,LearningandShare ClickHeretoAskaQuestion JustBrowsingBrowsing [1] nvue,mpvue,weex是啥? [2] javascript-Materializecss|js-visualizationissueintheCarouselSlides [3] algorithm-Ruby.Shufflethearraysothattherearenoadjacentelementswiththesamevalue [4] python写的ftp客户端,请问为什么会出现这样的错误? [5] visualstudiocode-"Clonerepositoryincontainervolume"fornon-publicrepo [6] InDjangohowcanwelimitamodelfieldtobevalues1-10andincrementbywholenumbers? [7] python-Listoflistschangesreflectedacrosssublistsunexpectedly [8] c++-Macroforpush_backgivingproblems [9] c#-RDLCReportExpressions [10] hdl-chipMux4way16notrunontiltheendon?HardwareSimulator(VHDL) 2.1mquestions 2.1manswers 13comments 31.1kusers Mostpopulartags javascript python java c# How android c++ php ios html sql r c node.js .net iphone asp.net css reactjs jquery ruby What Android objective mysql linux Is git Python windows Why regex angular swift amazon excel google algorithm macos how Java visual bash Can typescript multithreading PHP Using scala angularjs apache spring performance postgresql database flutter json rust arrays C# vba dart django wpf xml vue.js In go Get jQuery xcode jsf http Google mongodb string shell oop powershell SQL C++ security assembly docker Javascript Android: Does haskell web Convert azure debugging delphi vb.net Spring datetime pandas oracle math 联盟问答网站-UnionQAwebsite Xstack问答社区 生活宝问答社区 OverStack问答社区 Ostack问答社区 在这了问答社区 在哪了问答社区 Xstack问答社区 无极谷问答社区 TouSu问答社区 SQlite问答社区 Qi-U问答社区 MLink问答社区 Jonic问答社区 Jike问答社区 16892问答社区 Vigges问答社区 55276问答社区 OGeek问答社区 深圳家问答社区 深圳家问答社区 深圳家问答社区 Vigges问答社区 Vigges问答社区 在这了问答社区 Xstack问答社区 生活宝问答社区 OverStack问答社区 Ostack问答社区 在这了问答社区 在哪了问答社区 Xstack问答社区 无极谷问答社区 TouSu问答社区 SQlite问答社区 Qi-U问答社区 MLink问答社区 Jonic问答社区 Jike问答社区 16892问答社区 Vigges问答社区 55276问答社区 OGeek问答社区 深圳家问答社区 深圳家问答社区 深圳家问答社区 Vigges问答社区 Vigges问答社区 在这了问答社区 Xstack问答社区 生活宝问答社区 OverStack问答社区 Ostack问答社区 在这了问答社区 在哪了问答社区 Xstack问答社区 无极谷问答社区 TouSu问答社区 SQlite问答社区 Qi-U问答社区 MLink问答社区 Jonic问答社区 Jike问答社区 16892问答社区 Vigges问答社区 55276问答社区 OGeek问答社区 深圳家问答社区 深圳家问答社区 深圳家问答社区 Vigges问答社区 Vigges问答社区 在这了问答社区 Sendfeedback 深圳家 深圳家 极客中国 搜外友链 CCBY-SA3.0 PoweredbyQuestion2Answer Donate ThemebyQ2AMarket&&OStack.cn ...



請為這篇文章評分?