archive

Iphone app archive - No such file or directory

≯℡__Kan透↙ 提交于 2020-01-03 03:13:07
问题 I am almost ready to release my iphone app. I use restkit for consuming my webservice. When I archive, it fails with this error: cp: /Users/myusername/Library/Developer/Xcode/DerivedData/project-name-/ArchiveIntermediates/project-name/IntermediateBuildFilesPath/UninstalledProducts/include/RestKit: No such file or directory I dragged & dropped restkit into the project. It builds and works fine in debug mode. I am guessing it is unable to locate restkit dir while archiving. But I am not sure

How to extract all multi-volume RAR archives from subfolders of a folder?

大城市里の小女人 提交于 2020-01-03 02:12:51
问题 I search for a way to unpack multi-volume archives after download via batch. I download folders with .r?? files in it over a FTP monitoring program and want that WinRAR goes in the first subfolder in the source folder and start unpacking .r00, delete the archive and move the folder with the unpacked files to a new location. Then the batch script should start this process again with the next subfolder. Let's say the source folder C:\Users\unpack contains following subfolders with files: source

What to do if Xcode Archiving Utility shows wrong app for validation?

久未见 提交于 2020-01-02 01:43:43
问题 I have two app projects on my mac. Because I was lazy to configure my project again, I just duplicated the entire project folder of my first app and renamed the project. All files in project are always relative to project itself. So it worked very good. But today I wanted to Build & Archive an update of my first app. It all works with no complaints. But when the Archiving utility of Xcode is done, and I select my archive and click "Validate", Xcode asks for my iTunes connect credentials. Then

7zip Self Extracting Archive (SFX) without administrator privileges

泄露秘密 提交于 2020-01-01 08:47:52
问题 I use 7zip to create the SFX as follows: 7z.exe a -r archive.7z * Then I do a binary copy with the 7zS.sfx file (used to create a self extracting installer), config file "build.config", and the archive. The contents of config file are as follows: ;!@Install@!UTF-8! RunProgram="setup.exe" GUIMode="1" Path="%tmp%\\mytemp" ;!@InstallEnd@! Binary copy command is as follows: copy /b 7zS.sfx + build.config + archive.7z sfxInstaller.exe Problem is that the result SFX "sfxInstaller.exe" requires

7zip Self Extracting Archive (SFX) without administrator privileges

北城以北 提交于 2020-01-01 08:47:09
问题 I use 7zip to create the SFX as follows: 7z.exe a -r archive.7z * Then I do a binary copy with the 7zS.sfx file (used to create a self extracting installer), config file "build.config", and the archive. The contents of config file are as follows: ;!@Install@!UTF-8! RunProgram="setup.exe" GUIMode="1" Path="%tmp%\\mytemp" ;!@InstallEnd@! Binary copy command is as follows: copy /b 7zS.sfx + build.config + archive.7z sfxInstaller.exe Problem is that the result SFX "sfxInstaller.exe" requires

Xcode 4 archive results in slow/unresponsive Organizer & pngcrush process takes up 100% cpu

二次信任 提交于 2020-01-01 08:45:41
问题 sorry about the rather confusing title, but I tried to get in as much info as possible. Problem: I'm trying to archive my iPhone app into an ipa file for OTA testing (via TestFlightApp) - so in Xcode, I perform a Project > Archive. After the archive is successful, it opens the Xcode Organizer to create the ipa file. BUT as soon as Organizer is opened, Xcode becomes VERY slow & essentially unresponsive. So naturally I open Activity Monitor to see what's going on and there's a process called

Google chat server archive (XEP-0136)

独自空忆成欢 提交于 2020-01-01 07:32:27
问题 I am looking for a way how to retrieve archive of chat messages from google server via using XEP-0136 standard, but I got these results just trying to ask for the feature. Request: <iq type="get"><pref xmlns="urn:xmpp:archive"/></iq> Response: <iq xmlns="jabber:client" type="error" to="myEmail@gmail.com/9FF72CA7"> <pref xmlns="urn:xmpp:archive"/> <error code="501" type="cancel"> <feature-not-implemented xmlns="urn:ietf:params:xml:ns:xmpp-stanzas"/> </error> </iq> So it looks like google does

How to create a tar file that omits timestamps for its contents?

拈花ヽ惹草 提交于 2020-01-01 04:19:09
问题 Is there a way to create a .tar file that omits the values of atime/ctime/mtime for its files/directories? Why do we want to do this? We have a step in our build process that generates a directory of artifacts that gets packaged into a tarfile. We expect that build step to be idempotent -- given the same inputs, it produces exactly the same files/output each time. Ideally, we would like also like the step to be bitwise idempotent across clean builds, so that we can use hashes of successive

How to unzip a big zip file containing one file and get the progress in bytes with swift?

旧巷老猫 提交于 2019-12-31 19:40:07
问题 I try to unzip a big zip file containing only one item (more than 100MB) and like to show the progress during unzipping. I found solutions where the progress can be determined based on the amount of files unzipped but in my case I have only one big file inside. So I guess it must be determined by the amount of bytes unzipped? Actually I am using SSZipArchive with the following code which works fine: var myZipFile:NSString="/Users/user/Library/Developer/CoreSimulator/Devices/mydevice/ziptest

How can I recover files from a corrupted .tar.gz archive?

你说的曾经没有我的故事 提交于 2019-12-31 11:31:56
问题 I have a large number of files in a .tar.gz archive. Checking the file type with the command file SMS.tar.gz gives the response gzip compressed data - deflate method , max compression When I try to extract the archive with gunzip, after a delay I receive the message gunzip: SMS.tar.gz: unexpected end of file Is there any way to recover even part of the archive? 回答1: Are you sure that it is a gzip file? I would first run 'file SMS.tar.gz' to validate that. Then I would read the The gzip