2
A
回答
3
例如:
class CARPETAS
creation
make
feature {NONE}
make is
local
directory: DIRECTORY
path: STRING
do
path := "." -- Current directory
!!directory.scan_with(path)
list_directory(directory)
end
list_directory(directory: DIRECTORY) is
local
i: INTEGER
do
std_output.put_string("Content of " + directory.path + "%N")
from
i := directory.lower
until
i > directory.upper
loop
std_output.put_string("%T" + directory.name(i) + "%N")
i := i + 1
end
end
end
2
與最新版本的艾菲爾的,我會建議使用DIRECTORY.entries
local
p: PATH
do
across dir.entries as ic loop
p := ic.item.path
-- then use interface of PATH, such as PATH.name
end
end
注意,base_extension庫還提供DIRECTORY_VISITOR,這是有幫助的遞歸迭代對目錄
相關問題
- 1. 在艾菲爾
- 2. 如何在艾菲爾
- 3. 你如何在艾菲爾開發webapps?
- 4. 學習艾菲爾的經驗
- 5. 在艾菲爾的二進制樹
- 6. 艾菲爾避免所有空值?
- 7. 如何遍歷Ant中的目錄
- 8. 如何遍歷目錄中的文件?
- 9. 如何遍歷Common Lisp中的目錄?
- 10. 遍歷目錄
- 11. 遍歷目錄
- 12. Ruby中的目錄遍歷
- 13. 遍歷目錄樹
- 14. R:遍歷目錄
- 15. Applescript遍歷目錄
- 16. 目錄遍歷c
- 17. 如何遍歷目錄和子目錄中的所有文件
- 18. 如何遍歷PowerShell中的目錄並移動目錄?
- 19. 如何遍歷並獲取SQL Server目錄中的子目錄?
- 20. 誤差/如果Statment在自由ISE艾菲爾
- 21. 與艾菲爾的關鍵字「like`不變的分享
- 22. perl的遍歷目錄
- 23. 如何使用線程遍歷目錄?
- 24. 遍歷兩個目錄
- 25. 用php遍歷目錄?
- 26. 目錄遍歷問題c#
- 27. 使用Node.js遍歷目錄
- 28. 遍歷目錄路徑
- 29. 通過http遍歷目錄
- 30. 目錄遍歷bash shell
與最近版本的艾菲爾,我會推薦使用DIRECTORY.entries
local p: PATH do across dir.entries as ic loop p := ic.item.path -- then use interface of PATH, such as PATH.name end end
– Jocelyn 2014-01-09 13:30:58