Giter VIP home page Giter VIP logo

apf's People

Contributors

surgeonix avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar

apf's Issues

Unable to extract files from APF

Hello sir can you possibly give a Demo script for extracting files in a APF file?
There is really no Documation but i tried using this script but it didn't work out
i kept getting this Error
Severity Code Description Project File Line Suppression State Error CS1674 'Partfile': type used in a using statement must be implicitly convertible to 'System.IDisposable'. ConsoleApp1 C:\Users\evont\source\repos\ConsoleApp1\ConsoleApp1\Program.cs 19 Active

using System;
using System.IO;
using SuRGeoNix.Partfiles;

class Program
{
static void Main()
{
string sourceFilePath = @"C:\Program Files\WindowsApps\VectorUnit.BeachBuggyRacing_1.2.7.0_x64__hvbhrzr8672s2\Assets.apf";
string destinationFolderPath = @"C:\APF";

    if (!Directory.Exists(destinationFolderPath))
    {
        Directory.CreateDirectory(destinationFolderPath);
    }

    try
    {
        using (Partfile partfile = new Partfile(sourceFilePath))
        {
            using (PartStream partStream = partfile.GetReadStream())
            {
                byte[] buffer = new byte[4096];

                using (FileStream destinationFileStream = File.Create(Path.Combine(destinationFolderPath, partfile.Filename)))
                {
                    int bytesRead;
                    while ((bytesRead = partStream.Read(buffer, 0, buffer.Length)) > 0)
                    {
                        destinationFileStream.Write(buffer, 0, bytesRead);
                    }
                }
            }
        }

        Console.WriteLine("Export completed successfully.");
    }
    catch (Exception ex)
    {
        Console.WriteLine($"Error: {ex.Message}");
    }
}

}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.