예제 #1
0
def fileUrlToSystemPath(url):
    """Returns a system path.

    This path is determined by the system that the Python interpreter is running on.
    """

    return pyuno.fileUrlToSystemPath(url)
예제 #2
0
파일: uno.py 프로젝트: CloCkWeRX/core
def fileUrlToSystemPath(url):
    """Returns a system path.

    This path is determined by the system that the Python interpreter is running on.
    """

    return pyuno.fileUrlToSystemPath(url)
예제 #3
0
파일: uno.py 프로젝트: beppec56/openoffice
def fileUrlToSystemPath( url ):
    "returns a system path (determined by the system, the python interpreter is running on)"
    return pyuno.fileUrlToSystemPath( url )
예제 #4
0
def fileUrlToSystemPath(url):
    "returns a system path (determined by the system, the python interpreter is running on)"
    return pyuno.fileUrlToSystemPath(url)
예제 #5
0
파일: unohelper.py 프로젝트: t2y/unotools
def convert_url_to_path(url: str) -> str:
    """
    >>> convert_url_to_path('file:///var/tmp/libreoffice')
    '/var/tmp/libreoffice'
    """
    return pyuno.fileUrlToSystemPath(url)
예제 #6
0
def fileUrlToSystemPath(url):
    return pyuno.fileUrlToSystemPath(url)
def fileUrlToSystemPath(url):
    return pyuno.fileUrlToSystemPath(url)