Expose file size, mode, etc from `pathlib.Path.info`
未關閉
還沒有人認領這個 Issue。
stdlib
topic-pathlib
type-feature
- 主要語言
- Python
- 星號
- 77.2k
- 分支
- 36k
- PR 合併指標
- PR 指標待擷取
描述
Feature or enhancement
Proposal:
As a pathlib user, I desire methods that retrieve the file mode, size, access time and modify time.
We can implement these as methods of Path.info.
def mode(self, *, follow_symlinks: bool = True) -> int: ...
def size(self, *, follow_symlinks: bool = True) -> int: ...
def access_time(self, *, follow_symlinks: bool = True) -> datetime: ...
def modify_time(self, *, follow_symlinks: bool = True) -> datetime: ...
Has this already been discussed elsewhere?
I have already discussed this feature proposal on Discourse
Links to previous discussion of this feature:
https://discuss.python.org/t/expose-file-size-mode-etc-from-pathlib-path-info/103828
Linked PRs
- gh-139175
- gh-139183
- gh-139279
- gh-140155
貢獻指南
從這裡開始
- 先讀完整個 Issue,再讀專案的貢獻指南。
- 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
- Fork 儲存庫,在一個分支上完成修改。
- 送出 Pull Request,並在描述裡引用這個 Issue 編號。
研究方向
先閱讀 Path.info 文件和連結的 Discourse 討論,以了解提議的 API。在進行變更之前,查看連結的 PR gh-139175、gh-139183、gh-139279 和 gh-140155;當該提議有了達成共識的實作,並且所要求的 Path.info 方法受到支援時,這項工作就完成了。
由索引模型根據 Issue 內容生成。
評估
- 技術堆疊
- python
- 領域
- operating-systems
- Issue 類型
- 功能
- 難度
- 5/5
- 預估耗時
- 一週以上
- 活躍度
- 停滯
- 描述清晰度
- 基本清楚
- 新手友好度
- 20/100