# \[Bug\] FMOD Engine download uses backslashes in archives, which do not expand correctly on Linux

**URL:** https://qa.fmod.com/t/bug-fmod-engine-download-uses-backslashes-in-archives-which-do-not-expand-correctly-on-linux/21977
**Category:** FMOD Engine
**Tags:** html5
**Created:** [August 7, 2024, 3:20pm UTC](https://qa.fmod.com/t/bug-fmod-engine-download-uses-backslashes-in-archives-which-do-not-expand-correctly-on-linux/21977 "2024-08-07T15:20:15Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![whaley55](https://avatars.discourse-cdn.com/v4/letter/w/85f322/32.png) [@whaley55](https://qa.fmod.com/u/whaley55)
#### Post date: [August 7, 2024, 3:20pm UTC](https://qa.fmod.com/t/bug-fmod-engine-download-uses-backslashes-in-archives-which-do-not-expand-correctly-on-linux/21977/1 "2024-08-07T15:20:15Z")

</div>

Downloading the html5 FMOD Engine release I noticed that all paths use backslashes, which is against the Zip File Specification and causes issues when unzipping on Linux. After unzipping, all files appear in the top level directory as “path\to\fmod\file” instead of being organized into folders. See attached image for more info. Here is a stackoverflow thread discussing potential causes of this issue: [windows - Zip files expand with backslashes on Linux, no subdirectories - Super User](https://superuser.com/questions/1382839/zip-files-expand-with-backslashes-on-linux-no-subdirectories)

For Linux users, a simple script to fix this is `for file in *\\*; do target="${file//\\//}"; mkdir -p "${target%/*}"; mv -v "$file" "$target"; done`

 ![fmod_path_bug](https://canada1.discourse-cdn.com/flex036/uploads/fmod/original/2X/8/83f4b2e27ad8375d817233d388a18433b1fac74a.png)

---

<div class="post-metadata">

### Author: ![morgan\_fmod](https://yyz2.discourse-cdn.com/flex036/user_avatar/qa.fmod.com/morgan_fmod/32/1766_2.png) [@morgan\_fmod](https://qa.fmod.com/u/morgan_fmod)
#### Post date: [August 8, 2024, 1:27am UTC](https://qa.fmod.com/t/bug-fmod-engine-download-uses-backslashes-in-archives-which-do-not-expand-correctly-on-linux/21977/2 "2024-08-08T01:27:29Z")

</div>

Hi there,

Welcome to the FMOD forums! Thank you for letting us know about this issue.

As suggested in the Superuser thread you linked, we are using Powershell.Archive to compress the HTML5 zip, and our version was still using backslash as its path separator. I have added a ticket into our queue to fix the separator problem for future releases.

Kind regards,  
Morgan
