Site icon Fix I.T. Phill – Your Go-To Tech Guru

OpenAI Codex Windows 11 Trailing Dot Folder Bug: Field Report

OpenAI Codex Windows 11 trailing dot project folder bug report with Explorer access warning and safe rename guidance

OpenAI Codex Windows 11 trailing dot project folder bug report with Explorer access warning and safe rename guidance

June 24, 2026 field report: Fix I.T. Phill received a repeatable Windows 11 report involving OpenAI Codex project names that end in a period. The reported project name was personality form.. After Codex created the project folder, Windows Explorer reported that the drive or folder was missing when the folder was accessed normally.

This is being published as a product reliability bug report, not as an OpenAI-confirmed advisory and not as a security vulnerability. I do not have an independent Windows 11 test machine in this publishing environment, so the observed behavior below is based on the user-reproduced report plus Microsoft’s documented Windows path behavior.

Plain-English impact

A project display name should not be used directly as a Windows filesystem folder name if it ends with a period or space. Windows has long-standing path-normalization behavior around trailing periods and spaces. When a tool creates a real folder that normal Windows paths later normalize differently, users can see broken Explorer behavior, failed file-open dialogs, backup confusion, sync trouble, and a reasonable fear that the project files are gone.

For Codex users, the practical risk is workflow disruption: the project may still exist on disk, but the normal Windows Explorer route can fail or point at the normalized name instead of the actual directory.

Expected behavior

Observed behavior from the user report

Why this happens on Windows

Microsoft’s Windows path-format documentation explains that normal Windows path handling performs normalization. It evaluates special path segments like . and .., and it also removes trailing periods and spaces in normal path handling. Microsoft also documents the ? device path prefix, which can bypass normal path normalization for some tools.

That means a folder can exist with a trailing period when created through a path that bypasses normal Win32 cleanup, but many Windows tools and user-facing file dialogs will not handle it the way users expect. Explorer and normal app paths may look for the normalized name instead.

Likely root cause

The most likely product issue is that Codex is allowing the project display name to become the raw Windows directory name without a Windows-safe slugging step. A safe implementation should treat the user-facing name and the filesystem path as separate data.

Who should care

Safe workaround for Codex users

  1. Avoid project names that end with a period or space on Windows.
  2. Use a simple folder-safe name such as personality-form, personality-form-project, or personality-form-2026.
  3. If the folder already exists and Explorer cannot open it, stop Codex and pause any cloud sync tool before repair attempts.
  4. Back up the parent folder before renaming anything.
  5. Use Windows Terminal or PowerShell with the extended path form only after replacing the example path with your real path:
Rename-Item -LiteralPath "\\?\C:\path\to\personality form." -NewName "personality form"

If the project is inside a synced folder, confirm the rename locally and then re-enable sync only after the folder opens normally. If the folder contains important customer or production work, take a disk image or full copy first and get hands-on help before trying repair commands.

What OpenAI Codex should fix

Fix I.T. Phill reporting note

I am tagging this for the OpenAI and OpenAI Codex teams because the failure mode is confusing and avoidable. The right fix is not for users to learn obscure Windows path rules. The product should prevent unsafe folder names before they are written to disk.

Sources

Need help recovering a Windows project folder or cleaning up a broken developer workspace? Fix I.T. Phill can help document the failure, preserve the files, rename the folder safely, and rebuild the project path without making the situation worse.

Exit mobile version