获取Mac文件类型和创建者
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取Mac文件类型和创建者相关的知识,希望对你有一定的参考价值。
Displays the file type and file creator designations for any Mac OS document or application.
on open (fileList) tell application "Finder" set myFile to item 1 of fileList if kind of myFile is not "folder" then display dialog ¬ "file creator: " & (the creator type of (myFile as alias)) & return & ¬ "file type: " & (the file type of (myFile as alias)) end tell end open
以上是关于获取Mac文件类型和创建者的主要内容,如果未能解决你的问题,请参考以下文章
我的Android进阶之旅关于Android平台获取文件的mime类型:为啥不传小写后缀名就获取不到mimeType?为啥android 4.4系统获取不到webp格式的mimeType呢?(代码片段
我的Android进阶之旅关于Android平台获取文件的mime类型:为啥不传小写后缀名就获取不到mimeType?为啥android 4.4系统获取不到webp格式的mimeType呢?(代码片段