-1

ファイルタイプに関連付ける必要のないソフトウェアをいくつか入手したので、「/Applications」や「~/Applications」などの標準の場所以外のディレクトリにそれらを配置しましたが、どういうわけかシステムはまだそれらを掘り出して、コンテキストメニューの「開く」リストに追加できます。私の質問は、システムがそれらを無視するように強制する方法です。したがって、リストをコンパクトに開いたままにします。

4

1 に答える 1

1

これが回避策です。出来た。

import plistlib
import os
import sys
import shutil

SUBDIR_PATH=os.path.sep.join(('Contents', 'Info.plist'))

class FileTypeCleaner(object):

    def __init__(self,pathOfFile):
        self.filepath = self.checkInfoPlistExistence(pathOfFile)
        if self.filepath is not None:
            try:
                self.plistdata = plistlib.readPlist(self.filepath)
            except:
                self.plistdata = None
        else:
            self.plistdata = None

    @staticmethod
    def checkInfoPlistExistence(pathOfFile):
        path=os.path.sep.join((pathOfFile, SUBDIR_PATH))
        if os.path.isfile(path):
            return path
        return None

    def checkInfoPlistHasTypeKey(self):
        if 'CFBundleDocumentTypes' not in self.plistdata or \
                self.plistdata['CFBundleDocumentTypes'] == []:
            return False
        return True

    def vacuumTypeKey(self):
        self.plistdata['CFBundleDocumentTypes'] = []


if __name__=='__main__':
    if len(sys.argv)==1:
        sys.stderr.write('Usage: cleanFTypeAssoc.py app1.app [app2.app ...]\n')
        sys.stderr.flush()
        raise SystemExit
    for f in sys.argv[1:]:
        p = FileTypeCleaner(f)
        if p.plistdata is not None:
            if p.checkInfoPlistHasTypeKey():
                p.vacuumTypeKey()
                shutil.move(p.filepath, p.filepath+'~')
                plistlib.writePlist(p.plistdata, p.filepath)
于 2013-09-20T06:50:04.433 に答える