gpt4 book ai didi

ios - Xamarin iOS : Filtering out the FileType show on Document Picker

转载 作者:行者123 更新时间:2023-11-28 21:14:22 32 4
gpt4 key购买 nike

我正在尝试过滤掉所有不是图像、视频、音频、pdf 和其他文档文件的文件,例如微软。

目前,我的代码中有这个:

var allowedUTIs = new string[] {
UTType.Image,
UTType.PDF,
UTType.Video,
UTType.Audio,
UTType.Movie,
UTTYPE.Text,
"com.microsoft.word.doc",
"com.microsoft.excel.xls",
"com.microsoft.powerpoint.ppt",
"org.openxmlformats.wordprocessingml.document"
};

主要关注的是自定义类型。它是否涵盖所有 Microsoft Office 文件类型:doc、xls、ppt、docx 等...

是否还有其他我没有涉及的文档类型,例如苹果的特定文档文件。

最佳答案

        var allowedUtis = new string[] {
UTType.UTF8PlainText,
UTType.PlainText,
UTType.RTF,
UTType.PNG,
UTType.Text,
UTType.PDF,
UTType.Image,
UTType.UTF16PlainText,
UTType.FileURL,
"com.microsoft.word.doc",
"org.openxmlformats.wordprocessingml.document",
"com.microsoft.powerpoint.​ppt"
"org.openxmlformats.spreadsheetml.sheet",
"org.openxmlformats.presentationml.presentation",
"com.microsoft.excel.xls"
};

这些是我的 UTType,

在此,对于 doc“com.microsoft.word.doc”,对于 docx“org.openxmlformats.wordprocessingml.document”等。我已经针对所有文档进行了测试。

关于ios - Xamarin iOS : Filtering out the FileType show on Document Picker,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41797644/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com