407 questions
1
vote
0
answers
143
views
I have a problem using the command line and Raku
This screen transcript pretty much says it all:
ftype
PerlScript=C:\strawberry\perl\bin\perl.exe "%1" %*
RakuScript=C:\rakudo\bin\raku.exe "%1" %*
assoc
.pl=PerlScript
.raku=...
2
votes
1
answer
1k
views
How to enable context menu options to open files in XYPlorer, like how windows explorer offers "open with VSCode" on advance-click?
Among all the awful things to be said of windows file explorer, there is a gem that I miss about it after switching to XYPlorer. When I right-click in a folder's empty space, I am presented with ...
1
vote
0
answers
72
views
My Mac app shows an error message when an associated file is double-clicked
I'm developing a Mac app with Unity.
My app can import/export files, so I want to associate the file type with my app.
I edited the Info.plist like this:
<key>CFBundleDocumentTypes</key>
&...
0
votes
1
answer
753
views
"Open with" question for flutter desktop apps
If I have a flutter app on Windows and use "open with" to open some files with the app, how can I know what files were requested to open? For example, I select one or more files and "...
0
votes
0
answers
81
views
UWP prevent file activation from overriding previous frame
I'm trying to make a tab appear for every file opened via File Explorer.
Expectations: upon double click on the file, it should open up a new tab for that file
Reality: every time I open a file, the ...
0
votes
1
answer
169
views
How to associate double file extension to application on Windows 10
I want to associate a file extension .mps.gz to an application on Windows 10.
The .gz extension should not be affected. How can I do this?
1
vote
1
answer
2k
views
PowerShell, make 7-Zip automatically associate file types and add the 7-Zip context menu
I use 7-Zip in a portable way on various different systems and inside Windows Sandbox so the associations are missing every time I start on those systems. I can go to 7-Zip > Tools > Options >...
4
votes
1
answer
1k
views
File activation in MAUI
I want users to be able to open a file using my MAUI app. For example in Windows they could right-click on the file in File Explorer, choose my app in "open with" and then my app would open ...
2
votes
1
answer
4k
views
PHP Page is Attempting to Download Instead of Display Content
Problem: I'm creating a website right now, it's my first time dealing with PHP after learning the basics. My index.php file, when viewed on my localhost, is attempting to download the file and bring ...
0
votes
0
answers
135
views
Xamarin Forms iOS File Association
I have a standard Xamarin Forms application for Android and iOS. I have a file that we generate that is xml inside with a file extension of .PV4
I would like to have my app open when the user taps on ...
1
vote
1
answer
93
views
How can I associate a UWP verb (Windows right click action) with a folder and not just a file extension
I have a UWP app meant to take 0 or more arguments which are either the path to a folder or the path to a compressed archive. I want these arguments to be passed by adding a right click menu in ...
0
votes
1
answer
505
views
PHP file isn't outputing to local browser, just showing code
Originally, I would select my php files and it would open the site on my local browser, I accidently opened it to notepad and now it will only open the code to editors. Does anyone know how to change ...
0
votes
1
answer
292
views
UWP create new window for each file opened
I'm trying to make an app open a window for each file.
-- Code ---
App.cs:
protected async override void OnFileActivated(FileActivatedEventArgs Args)
{
//Opens Main Page
base....
1
vote
1
answer
782
views
How do you make xdg-utils detect a file association for my application from a distribution package?
I am building a distribution package for xnec2c and I want .nec files to associate with xnec2c and also display the associated icon.
(This question is different than the many xdg-utils answers out ...
3
votes
0
answers
3k
views
How do you remove an xdg-mime default association?
So xdgmime default foo.desktop application/x-foo will associate a mime type in ~/.local/share/applications/mimeapps.list like this:
[Default Applications]
...
application/x-foo=foo.desktop
What is ...