1

I have a large Android project which was initially made in Eclipse thus being file-based project. I would like to convert it to IDEA's directory-based project, but I do not know which files will be changed in this process.

What are the dangers I should be aware of when converting file-based project to directory-based project?

Do any files get deleted in such conversion?

After the conversion, will Eclipse users be able to open the project or I would have to convert it back to file-based each time I need to share the project with such users?

Thanks for your help and time.

4

1 に答える 1

4

ファイル ベースとディレクトリ ベースはどちらも、Eclipse が理解できない IDEA 固有のプロジェクト形式であるため、変換後もこの点に関しては何も変わりません。

ファイル ベースのプロジェクトをディレクトリ ベースのプロジェクトに変換すると、ファイルはディレクトリに.ipr置き換えられ、ファイルは に移動されます。ディレクトリの下にある複数の異なるファイルは、単一の大きなファイルよりも共有/マージが簡単です。.idea.iws.idea/workspace.xml.xml.idea.ipr

元のファイル.ipr.iwsファイルは変換後に削除されませんが、混乱を避けるために手動で削除することをお勧めします (.ipr新しい.ideaディレクトリ ベースのプロジェクトではなく古いプロジェクトを開くなど)。

于 2012-05-09T11:41:24.893 に答える