PHP: Get all files and folders from a directory (folder) PHP: Nhận tất cả các file và thư mục từ một thư mục (folder)
Posted on 16. Được đăng trên 16. Jun, 2009 by Dragos in Coding , PHP Tháng Sáu, 2009 bởi Dragos tại Coding, PHP
To get all files and folders from a directory (folder) I found scandir to be the perfect solution. Để có được tất cả các file và thư mục từ một thư mục (folder) Tôi tìm thấy scandir được các giải pháp hoàn hảo.
scandir scans a directory and returns an array containing all files and directories under the parent directory we're looking in. scandir quét một thư mục và trả về một mảng chứa tất cả các file và thư mục trong thư mục phụ huynh chúng tôi đang tìm kiếm in
The code below will try to remove a directory, if the element is a directory or delete a file, if respectively the element is a file. Đoạn code dưới đây sẽ cố gắng để loại bỏ một thư mục, nếu phần tử là một thư mục hoặc xóa một tập tin, nếu các yếu tố tương ứng là một tập tin.
$lookin='./home/folder'; $ lookin = '. / home / thư mục'; $elements=scandir($lookin); $ yếu tố = scandir ($ lookin); foreach($elements as $singleEl) { foreach ($ yếu tố như là $ singleEl) ( if(is_dir($lookin.'/'.$singleEl)) rmdir($lookin.'/'.$singleEl); if (is_dir ($ lookin .'/'.$ singleEl)) rmdir ($ lookin .'/'.$ singleEl); else khác unlink($lookin.'/'.$singleEl); bỏ liên kết ($ lookin .'/'.$ singleEl); } )
Related posts: Liên quan đến bài viết:
- Apache & ModRewrite: How to easily deny access to a folder with htaccess Apache & ModRewrite: Làm thế nào để từ chối một cách dễ dàng truy cập vào một thư mục với htaccess
- JavaScript: How to get the index (position within a group) of an object with jQuery? JavaScript: Làm thế nào để có được chỉ số (vị trí trong một nhóm) của một đối tượng với jQuery?
- JavaScript: Where do I Find All Properties for All HTML Elements ? JavaScript: Tôi Tìm Mọi tiết cho Tất cả các yếu tố HTML?
- PHP: How to get creation time of file with PHP on Linux machines PHP: Làm thế nào để có được thời gian tạo ra các tập tin với PHP trên máy Linux
- Wordpress: Best SEO iTranslator for Wordpress, get free traffic from fully automated plugin script Wordpress: Best SEO iTranslator cho Wordpress, nhận được lưu lượng truy cập miễn phí từ kịch bản plugin hoàn toàn tự động












































