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")