Jump to content
  • 0

Удаление неизвестного файла


haZe
 Share

Question

Имею некоторое количество динамически созданных файлов. Имена файлов имеют некую структуру. В начале идет слово, которое известно и хранится в переменной, потом разделительный символ и некий набор цифр, который неизвестен. (string_123456.file).

Необходимо удалить эти файлы. Можно ли использовать регулярное выражение в теле функции unlink или есть какие-то способы решения этой проблемы?

Вопрос не очень большой важности, но все таки дал бы хороший плюс.

Заранее буду благодарен, ежели кто даст подсказку.

P.S. Количество удаляемых файлов и цифр в имени неизвестно или известно примерно

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

У меня так получилось, нашел скрипт в мануале по РНР и добавил регулярное выражение и удаление.

if ($handle = opendir('path/')) {
while (false !== ($file = readdir($handle))) {
if ($file != "." && $file != "..") {
if(eregi(".{0,}_[0-9]{0,}\....", $file)){
unlink('path/'.$file);
}
}
}
closedir($handle);
}

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy