Jump to content

Search the Community

Showing results for tags 'archive'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Welcome to UNIGINE Forums
    • News & Announcements
    • Getting started
  • Development
    • Content Creation
    • World Design
    • Rendering
    • Animation
    • Physics, Navigation and Path Finding
    • UI Systems
    • Sound & Video
    • Editor
    • C++ Programming
    • C# Programming
    • Networking
    • Sim IG (Image Generator)
    • VR Discussions
    • General
  • Improving UNIGINE
    • Documentation
    • Feedback for UNIGINE team
    • Bug Reports
    • Unigine SDK Beta feedback
  • Community
    • Add-on Store (https://store.unigine.com/)
    • Showcase
    • Collaboration
    • Tools, Plugins, Materials & Tutorials
    • General Discussions
  • Legacy
    • UnigineScript

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Found 2 results

  1. Hello, I'm trying via filesystem api to list all folder inside a folder ( non recursively ). The code belove work when you list folder from a normal directory but, doesn't work on folder who are compressed. std::vector<std::string> NQ::get_folder_list(const std::string& inDir) { std::vector<std::string> dirs; auto dir = Unigine::Dir::create(); if (dir->open(inDir.c_str())) { int dirCount = dir->getNumDirs(); for (int i = 0; i < dirCount; i++) { auto dirName = std::string(dir->getDirName(i)); dirName.pop_back(); // remove last slash dirs.push_back(dirName); } } } Any clue ? Thanks.
  2. Archiving "UNG vs ZIP"

    Hi, I am starting to package everything up. What are the benefits of using ung files with the archiver instead of zip files? The only documentation that I can find is that ung files are limited to 2 gigs. Is there any performance benefits to using ung files over zip files? Thanks, Sam
×
×
  • Create New...