Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 497067
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T05:44:46+00:00 2026-05-13T05:44:46+00:00

What I want to do is run a process on my server that acts

  • 0

What I want to do is run a process on my server that acts like an FTP server. So people can upload things through “FTP” but really it’s a program I’m running that lets me put information about that file in a database and not really put the files where they say they’re going.

E.g. Website Templates. A user of my service wants to put up the template they are working on for a client of theirs, but wants to upload it through the FTP in their text editor. But I want to store that templates data in a database, process it to find out things about it then store it where I want to but still display it as being where the person put it for them.

Probably going to be very difficult but does anyone know if it’s possible?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T05:44:46+00:00Added an answer on May 13, 2026 at 5:44 am

    FTP only defines the specifics of the transfer operation. How the actual storage is handled is up to whoever’s writing the server. This allows it to be filesystem-agnostic, so that the same protocol can be used against Unix, Windows, VMS, TRS-DOS, etc.

    One option would be to find the source for an existing server that runs on your platform of choice and just “replace” the calls that deal with the file I/O.

    dbfs.h:

    
    #define open db_open
    #define write db_write
    #define close db_close
    

    dbfs.c:

    
    int open(...)
    {
        /* create a memory buffer */
    }
    
    ssize_t write(...)
    {
        /* write data to memory buffer */
    }
    
    int close(...)
    {
        /* execute SQL insert statement to save memory buffer to db */
    }
    

    Existing server code:

    
    #include <fcntl.h>
    #include <unistd.h>
    #include "dbfs.h" /* "replaces" system-defined file I/O routines */
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to customize a .NET build process so that I can run an
Hi all i want to run a java application as backend process.that is like
I want to run a process in a remote linux server and keep that
I've got this simple bash script that starts a server process. I want to
I want to run a CSharp process from my java server under a different
I want the following things to occur: Have the process automated server side. Simply
I have a node.js script on my server that I want to run continuously
I want to run a selenium tests using python against a server farm that
We have tests using WatiN that we want to run on our CruiseControl.NET server.
I'm in the process of writing a server application that mainly allows people to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.