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 6329745
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T17:44:03+00:00 2026-05-24T17:44:03+00:00

I thought I’d seen an answer to this question before, but after searching here

  • 0

I thought I’d seen an answer to this question before, but after searching here and google I just can’t find it.

How do you replace an existing symlink with a copy of the file it points to? IE copy the source file over the link.

Start with this

/path/to/file.txt
/link/path/file.txt -> /path/to/file.txt

Then call something like copy('/path/to/file.txt', '/link/path/file.txt'); and get this:

/path/to/file.txt
/link/path/file.txt

The reason i can’t just use copy() is that it doesn’t seem to support overwriting a symlink with its source file as it thinks they’re the same thing and gives the error “XXXXX and YYYYY are identical (not copied)”

Is there a method like copy which can overwrite a symlink with a copy of its source file?

  • 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-24T17:44:04+00:00Added an answer on May 24, 2026 at 5:44 pm

    I don’t think it’s possible with a single command. Here’s a solution that doesn’t involve renaming (you should probably add in error checking):

    $linkLoc = readlink('/link/path/file.txt');
    unlink('/link/path/file.txt');
    copy($linkLoc, '/link/path/file.txt');
    

    If you find yourself doing this a lot, you may find it worthwhile to wrap this in a handy function.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I thought this was asked before, but 15 minutes of searching on Google and
I thought this question would have been asked before, but I couldn't find it
I thought this would be really easy but I can't find a simple solution,
I thought this would be easy, but after scanning many pages Google hasn't come
I thought I had got this to work before, but I just don't see
I thought this would be a common question, but I didn't find it anywhere...
Thought this would be a good SO question since couldn't find anything on Google
I thought this would be a pretty common question to look for in Google
I thought I had reasonable answers for this question at a recent interview, but
I thought I heard that py2exe was able to do this, but I never

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.