Questions tagged [common-files]

7 questions
31
votes
6 answers

How do I find the Windows common application data folder using Python?

I would like my application to store some data for access by all users. Using Python, how can I find where the data should go?
David Sykes
  • 48,469
  • 17
  • 71
  • 80
2
votes
5 answers

using includes cross domain that contain php code - failing

I have a series of web sites all hosted on the same server with different domains. I want to host some common PHP scrips and then be able to call these from the other domains. Im am a bit fresh with my php so pls excuse code attempts - I have tried…
megaSteve4
  • 1,760
  • 1
  • 17
  • 24
2
votes
2 answers

How to upload file with additional information in java

I am using apache commons-fileupload to upload file. But, I'm unable to pass more information about the attachment. For example, users want to add attachment information while uploading the particular file. So I send the comments together with…
1
vote
2 answers

Git: Multiple repositories in same folder with common files and code

I am looking at moving a large codebase to Git. There are many groups working on the codebase and multiple release builds are in [staggered] production. Some people will be working on ReleaseBuild A and ReleaseBuild B at the same time and will need…
1
vote
0 answers

Common files for projects in solution C++

I have two projects in a single solution in Visual Studio 2015 and I want to add common files to it (both header and source files that will be used by both projects). I looked for Add as link, but it doesn't seem to be available to C++. How do I do…
0
votes
0 answers

How can I create a shared scaffold widget for a podcast app using the just audio package in Flutter?

I am currently building a podcast app using Flutter and the just-audio package. I would like to have a scaffold widget that is shared across all pages of the app and updates its state based on the audio playback. How can I achieve this…
0
votes
0 answers

addling common header file in Nodejs Express

I am using HTML file and Express using NODEJS exports.sendDashboardHtml = function(req,res,next){ res.sendfile(HTMLLOCATION+'/dashboard.html'); }; which is delivering the HTML File with no problem. Now i want to add common header and footer file…