コード例 #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
ファイル: unotest.py プロジェクト: jaideepghosh/LibreOffice
def fileUrlToSystemPath(url):
    return pyuno.fileUrlToSystemPath(url)
コード例 #7
0
def fileUrlToSystemPath(url):
    return pyuno.fileUrlToSystemPath(url)