mirror of
https://github.com/zekexiao/pocketlang.git
synced 2025-02-06 12:46:53 +08:00
24 lines
250 B
Markdown
24 lines
250 B
Markdown
|
# path
|
||
|
|
||
|
TODO: this page is incomplete.
|
||
|
|
||
|
#### path.getcwd
|
||
|
```ruby
|
||
|
getcwd() -> str
|
||
|
```
|
||
|
|
||
|
#### path.abspath
|
||
|
```ruby
|
||
|
abspath(path:str) -> str
|
||
|
```
|
||
|
|
||
|
#### path.relpath
|
||
|
```ruby
|
||
|
relpath(path:str) -> str
|
||
|
```
|
||
|
|
||
|
#### path.join
|
||
|
```ruby
|
||
|
join(...path:str) -> str
|
||
|
```
|