gpt4 book ai didi

android - 是否可以将这些文件夹分配到另一个地方?

转载 作者:IT老高 更新时间:2023-10-28 21:43:33 25 4
gpt4 key购买 nike

我正在安装 Android Studio我默认路径为 C:\Users\Administrator\AppData\Local\Android\sdk设置我的SDK .如果我选择这个选项,一些文件夹会出现在路径 C:\Users\Administrator 上。 .

这些文件夹是:

  • .android
  • .AndroidStudio1.3
  • .oracle_jre_usage
  • .gradle

  • 为了更干净一点,我尝试将所有这些文件夹包装到另一个文件夹中,但每次我运行 Android Studio它给了我重新配置设置的选项。如果我再次配置它们,这些文件夹会重新出现在路径 C:\Users\Administrator 上。 .

    我可以做些什么来将这些文件夹包装到另一个文件夹中或为它们设置另一个位置并且设置将被保存?

    编辑:我在 Rahul Tiwari提供的答案的博客上证明了解决方案但我只能得到文件夹 .android将在新文件夹中。其余文件夹在更改后位于同一位置。

    编辑 2:根据 Rahul Tiwari提供的博客移动文件夹 .gradle我更改了 Android Studio 的默认设置:
    File > Other Settings... > Default Settings... > Build, Execution, Deployment > Gradle

    这里我有 服务目录路径: C:/Users/Administrator/AndroidStudio/.gradle
    但是文件夹 .gradle仍然出现在路径 C:/Users/Administrator .

    编辑 3:试图删除文件夹 .AndroidStudio1.3我改变了这些行:
    #---------------------------------------------------------------------
    # Uncomment this option if you want to customize path to user installed plugins folder. Make sure you're using forward slashes.
    #---------------------------------------------------------------------
    # idea.plugins.path=${idea.config.path}/plugins

    #---------------------------------------------------------------------
    # Uncomment this option if you want to customize path to IDE logs folder. Make sure you're using forward slashes.
    #---------------------------------------------------------------------
    # idea.log.path=${idea.system.path}/log

    对这些:
    #---------------------------------------------------------------------
    # Uncomment this option if you want to customize path to user installed plugins folder. Make sure you're using forward slashes.
    #---------------------------------------------------------------------
    idea.plugins.path=${C:/Users/Administrator/AndroidStudio/.AndroidStudio1.3/config}/plugins

    #---------------------------------------------------------------------
    # Uncomment this option if you want to customize path to IDE logs folder. Make sure you're using forward slashes.
    #---------------------------------------------------------------------
    idea.log.path=${C:/Users/Administrator/AndroidStudio/.AndroidStudio1.3/system}/log

    但我也无法移动文件夹。

    编辑 4:这是 blog我之前提到的(非常感谢 Rahul Tiwari)。我把它贴在这里是因为他的回答被删除了。

    提前致谢!

    最佳答案

    最后,我找到了移动上面放置的三个文件夹的解决方案。我认为在这里提出我面临的问题以及我为解决这些问题所做的更改可能会很有趣。
    我要调查最后一个文件夹 .oracle_jre_usage ,如果我有解决方案,我会完成这个答案。看我完成了.gradle的解决方案文件夹。

    搬家.android文件夹
    真的,按照博客的步骤Rahul Tiwari提供,这个文件夹可以移动。不过,我将把所有过程都放在这里:

  • 你必须移动你的.android文件夹,关闭后 Android Studio (如果你有它运行),到你想要存储它的文件夹,在我的例子中,C:\Users\Administrator\AndroidStudio .
  • 当心新文件夹名称中的空格,它可能会给您带来问题(作为我)。 我的意思是,Android Studio , New Folder或类似的。
  • 如果您在 Windows ,您可以右键单击My Computer > Properties > Advanced System Settings > Environment Variables并创建一个名为 ANDROID_SDK_HOME 的新环境变量作为值,您必须将 .android 放入其中的新路径文件夹将被存储。这与您移动 .android 的路径相同。上述步骤中的文件夹。
  • 单击“确定”按钮接受您的更改。
  • 重新上线Android Studio看看 .android文件夹不会出现在默认路径中。

  • 搬家.AndroidStudio1.3文件夹
    对于那个文件夹,我遇到了一些问题,因为我没有注意到一些非常重要的细节。这是我遵循的步骤:
  • 首先你要关闭Android Studio在进行任何更改之前。
  • 之后,您必须移动文件夹 .AndroidStudio1.3到您想要存储它的路径。
  • 接下来,您必须转到 Android Studio 所在的文件夹。已安装并打开“idea.properties”文件并更改了 所在的行idea.config.path idea.system.path 出现这些文件夹将要位于的新路径。

  • 它们必须与此类似:
    idea.config.path=C:/Users/Administrator/AndroidStudio/.AndroidStudio1.3/config

    idea.system.path=C:/Users/Administrator/AndroidStudio/.AndroidStudio1.3/system

    Here I had three problems so please be careful:


    • Notice that the paths are with / and not with \ as Windows put by default.

    • DON'T CHANGE the values of idea.plugins.path and idea.log.path (My EDIT 3). Be sure that you are changing idea.config.path and idea.system.path values.

    • Uncomment the lines in which idea.config.path and idea.system.path appears. I mean, remove the # that they have at the begining of each line.

  • 最后一步,重新启动Android Studio .

  • 搜索并做一些证明我也得到了移动的解决方案 .gradle文件夹。步骤同 .android文件夹,但我将所有步骤(更改的值)都放在这里以避免任何混淆。这里是:
    搬家.gradle文件夹
  • 你必须移动你的.gradle文件夹,关闭后 Android Studio (如果你有它运行),到你想要存储它的文件夹,在我的例子中,C:\Users\Administrator\AndroidStudio\.gradle .
  • 当心新文件夹名称中的空格,它可能会给您带来问题(作为我)。 我的意思是,Android Studio , New Folder或类似的。
  • 如果您在 Windows ,您可以右键单击My Computer > Properties > Advanced System Settings > Environment Variables并创建一个名为 GRADLE_USER_HOME 的新环境变量作为值,您必须将 .gradle 放入其中的新路径文件夹将被存储。这与您移动 .gradle 的路径相同。上述步骤中的文件夹。
  • 单击“确定”按钮接受您的更改。
  • 重新上线Android Studio看看 .gradle文件夹不会出现在默认路径中。
  • 关于android - 是否可以将这些文件夹分配到另一个地方?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32759785/

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