Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add ReplaceSlash and CurrentWorkDirectory methods. #1393

Merged
merged 1 commit into from
Feb 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions tir/main.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import os

from tir.technologies.webapp_internal import WebappInternal
from tir.technologies.apw_internal import ApwInternal
from tir.technologies.poui_internal import PouiInternal
Expand Down Expand Up @@ -1471,6 +1473,23 @@ def SetCalendar(self, day='', month='', year=''):
"""
return self.__webapp.SetCalendar(day, month, year)

def ReplaceSlash(self, path):
"""

:param path: Path that will be normalized depending on operating system(Windows, Linux).
:type path: str
:return: Returns the path with the correct slash according to the OS
"""
return self.__webapp.replace_slash(path)

def CurrentWorkDirectory(self):

"""

:return: Returns the current working directory
"""

return os.chmod()

class Apw():

Expand Down