Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Get file path from imported after effect project file

New Here ,
Jul 22, 2020 Jul 22, 2020

Hi,

im currently write a c++ plugin to iterate through every item in my project. My project has other after effect project files imported and i try to get the file paths from this aep-files. I see that every aep-file is typed as "AEGP_ItemType_FOLDER", but how can i get the full file path from this files? For footage there is the function "AEGP_GetFootagePath(...)" but i cant find a similiar function for aep-files! 

 

Thanks.

Mike

TOPICS
SDK
354
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

LEGEND , Jul 22, 2020 Jul 22, 2020

There is no such thing. An imported project is just a data structure, not an actual external source. It gets converted and appended to the host project data immediately. If you need to retain this info, you need to glean it from the projects' actual source files up to weird stuff like creating a dummy element that just holds this info and can be read programmatically later.

 

Mylenium

Translate
LEGEND ,
Jul 22, 2020 Jul 22, 2020

There is no such thing. An imported project is just a data structure, not an actual external source. It gets converted and appended to the host project data immediately. If you need to retain this info, you need to glean it from the projects' actual source files up to weird stuff like creating a dummy element that just holds this info and can be read programmatically later.

 

Mylenium

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jul 27, 2020 Jul 27, 2020
LATEST

Hi,

tanks for you answer, you're right. It's only a copy from imported project. If i delete the imported Project after import, it has no effect in my project. So i can ignore this. 

 

Thanks.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines