有没有办法轻松完成这项工作?我在文件系统中有一个非常深入的目录,我访问了很多,所以我在我的主目录中创建了一个别名,但它不会让我进入它。有什么解决方案?谢谢!
答案 0 :(得分:16)
您可以像在unix中一样创建符号链接
e.g。
ln -s ~/Library/Documentation .
创建一个指向〜/ Library文件夹中隐藏的Documentation文件夹的符号链接。
答案 1 :(得分:4)
试试这个
创建:val textToSpeech = TextToSpeech(
applicationContext,
object : TextToSpeech.OnInitListener {
override fun onInit(status: Int) {
if (status == TextToSpeech.SUCCESS) {
textToSpeech.setLanguage(Locale.UK)
}
}
})
//将其保存到当前目录中;
删除:ln -s [Directory] [alias name of the directory]