高校国語785655 views
LaTeX957300 views
高校日本史189857 views
雑学1472593 views
小学社会308636 views
ヒストリア284143 views
MathPython491378 views
中学社会667106 views
中学数学621382 views
中学理科1626207 views
Help
Tools

English

Config of root path - Pi/Pie

In the Pi/Pie project, developers can set the root path in index.pi.

+ html
+ path
+ option


this_file = path.this()
option.path.root = this_file.parent.path

html.print(data)

The path.this() return an Path object of the current file. The Path object has parent property that is also Path object, and path property that is not relative but absolute.

index.pi is directly placed in the project directory so its parent is project itself.

In the above case, the root path is set to the project path. The default root is “/” in the OS level.

I think Pi/Pie language can be used in Rollpie and local environments. If you use Pi/Pie as an alternative of Python or Java in your computer, you may not need to change the root path. In the Rollpie project, there is no need to change the root option.