當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Perl glob()用法及代碼示例


Perl中的glob()函數用於打印作為參數傳遞給它的目錄中存在的文件。此函數可以打印所有或擴展名已傳遞給它的特定文件。

用法: glob(Directory_name/File_type);

參數:要打印文件的目錄的路徑。


返回值:給定目錄中存在的文件列表

示例1:打印目錄中所有文件的名稱

#!/usr/bin/perl 
  
# To store the files 
# from the directory in the array 
@files = glob('C:/Users/GeeksForGeeks/Folder/*'); 
  
# Printing the created array 
print "@files\n";

輸出:

上麵的示例將打印所請求目錄的所有文件。

示例2:打印目錄中特定文件的名稱

#!/usr/bin/perl 
  
# To store the files of a specific extension 
# from the directory in the array 
@Array = glob('C:/Users/GeeksForGeeks/Folder/*.txt'); 
  
# Printing the created array 
print "@Array\n";

輸出:

上麵的示例將打印所請求目錄的所有擴展名為.txt的文件。



相關用法


注:本文由純淨天空篩選整理自Code_Mech大神的英文原創作品 Perl | glob() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。