示例#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
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)