Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试找到一种方法来列出与此模式匹配的文件夹中的所有文件名:
20131106XXXXX.pdf
前缀是日期,内容和长度XXXX因文件而异,我只关心pdf文件。
XXXX
任何人都可以建议一种方法来做到这一点?
尝试这个
list.files(path="./yourdir",pattern="[[:digit:]]{8}.*\\.pdf")
您可以使用正则表达式。
files <- dir(pattern="^[0-9]{8}.*\\.pdf")