0
nodejsでは、文字列 "foo- *"を指定すると、foo-で始まるすべてのディレクトリ名を見つける方法はありますか?nodejsのワイルドカードと一致するディレクトリを見つける方法は?
など。検索は、私がこれまで持って何等の
をFOO-バー、FOO-チーズを返します:
// If The directory name contains a wildcard character
// search all directory names with the preceding characters.
let wildcard = '*';
if (directory.indexOf(wildcard) !== -1) {
// Search for directories that contain the directory string (without the *).
}
私は、ファイルシステムモジュールで有用なものを見ることができませんでした。
私はglobモジュールを使いました。 – chap